home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997 September / Macworld (1997-09).dmg / Serious Software / Cherwell Scientific Demos / DIMPLE / Install Files / IOL / Edge Enhance.IOL < prev    next >
Text File  |  1997-02-25  |  243b  |  15 lines

  1. !DIMPLE IOL PROGRAM
  2. ! Edge enhancement using substractive smoothing
  3.  
  4. images
  5.   x input ;
  6.   d1 temp ;
  7.   y "Edges" output ;
  8. operations
  9.   d1 = filter x ( 1, 1, 1,
  10.                   1, 1, 1,
  11.                   1, 1, 1 ) / 9 ;
  12.  
  13.   y = x + (x-d1) ;  
  14.  
  15.